home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / source / misc / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-01-26  |  685 b   |  33 lines  |  [TEXT/R*ch]

  1. # Copyright (C) 1994, 1995 Stanley T. Shebs.
  2.  
  3. # Xconq is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2, or (at your option)
  6. # any later version.
  7.  
  8. SHELL = /bin/sh
  9.  
  10. # Host and target-dependent makefile fragments come in here.
  11. ####
  12. # End of host and target-dependent makefile fragments.
  13.  
  14. all:
  15.  
  16. install: all install-only
  17.  
  18. install-only:
  19.  
  20. clean:
  21.     rm -f *.o core
  22.  
  23. distclean: clean
  24.     rm -f Makefile config.status
  25.  
  26. extraclean: distclean
  27.     rm -f *~* .*~*
  28.  
  29. realclean: distclean
  30.  
  31. Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  32.     $(SHELL) config.status
  33.